home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PD Collection CD 1
/
PD Collection CD 1.iso
/
programer2
/
sdls
/
Tutorials_ClientEx_c_clientEx
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-03-08
|
280 b
|
22 lines
/*
* clientEx.c
*
* Example of a DLL client application
*/
#include <stdio.h>
#include "dllExample.h"
int main(void)
{
/* --- Display a friendly greeting --- */
hello();
/* --- Tell the user what the time is --- */
printf("%s\n",current_time());
return (0);
}